projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
382f660
)
* byte-opt.el (byte-decompile-bytecode-1): Use eq instead of =.
author
Vibhav Pant
<vibhavp@gmail.com>
Sun, 5 Feb 2017 16:40:22 +0000
(22:10 +0530)
committer
Vibhav Pant
<vibhavp@gmail.com>
Sun, 5 Feb 2017 16:40:22 +0000
(22:10 +0530)
lisp/emacs-lisp/byte-opt.el
patch
|
blob
|
history
diff --git
a/lisp/emacs-lisp/byte-opt.el
b/lisp/emacs-lisp/byte-opt.el
index edfa578f85b9109c2b36248503eecb5da12daffd..146fbcc1cb615d054b93ba4f9790bb61936b342c 100644
(file)
--- a/
lisp/emacs-lisp/byte-opt.el
+++ b/
lisp/emacs-lisp/byte-opt.el
@@
-1405,7
+1405,7
@@
;; TAGs.
(let ((orig-table last-constant))
(cl-loop for e across constvec
- when (
=
e last-constant)
+ when (
eq
e last-constant)
do (setq last-constant (copy-hash-table e))
and return nil)
;; Replace all addresses with TAGs.